FileEntry

class FileEntry(val key: String, val value: File) : FormDataEntry

A key to file value pair representing a segment of form upload data.

Such an entry can be used only with MultipartFormData.

Since

8.0.0

Constructors

Link copied to clipboard
constructor(key: String, value: File)

Properties

Link copied to clipboard
val key: String

The form content segment key.

Link copied to clipboard
open override val value: File

The segment value representing the file content.